home *** CD-ROM | disk | FTP | other *** search
/ Inter.Net 55-1 / Inter.Net 55-1.iso / CBuilder / Info / TeachU14 / SAMS / Code / Day07 / day7.bpg next >
Encoding:
Borland Project Group  |  1998-02-08  |  748 b   |  22 lines

  1. #------------------------------------------------------------------------------
  2. VERSION = BWS.01
  3. #------------------------------------------------------------------------------
  4. !ifndef ROOT
  5. ROOT = $(MAKEDIR)\..
  6. !endif
  7. #------------------------------------------------------------------------------
  8. MAKE = $(ROOT)\bin\make.exe -$(MAKEFLAGS) -f$**
  9. DCC = $(ROOT)\bin\dcc32.exe $**
  10. BRCC = $(ROOT)\bin\brcc32.exe $**
  11. #------------------------------------------------------------------------------
  12. PROJECTS = Scratch
  13. #------------------------------------------------------------------------------
  14. default: $(PROJECTS)
  15. #------------------------------------------------------------------------------
  16.  
  17.  
  18. Scratch: Scratch.bpr
  19.   $(MAKE)
  20.  
  21.  
  22.